/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --eventflow-font: "DM Sans", sans-serif;
    --eventflow-font-two: "Inter", sans-serif;
    --eventflow-gray: #7C7B7B;
    --eventflow-gray-rgb: 124, 123, 123;
    --eventflow-white: #ffffff;
    --eventflow-white-rgb: 255, 255, 255;
    --eventflow-base: #A7C520;
    --eventflow-base-rgb: 178, 13, 93;
    --eventflow-black: #04000A;
    --eventflow-black-rgb: 4, 0, 10;
    --eventflow-primary: #4A0AB4;
    --eventflow-primary-rgb: 74, 10, 180;
    --eventflow-extra: #F8F8F8;
    --eventflow-extra-rgb: 248, 248, 248;
    --eventflow-bdr-color: #CCCCCC;
    --eventflow-bdr-color-rgb: 204, 204, 204;
  
  }
 
  .row {
    --bs-gutter-x: 30px;
  }
  
  .gutter-y-30 {
    --bs-gutter-y: 30px;
  }
  
  body {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }
  
  .body-bg-color-1 {
    background-color: var(--eventflow-black);
  }
  
  .body-bg-color-2 {
    background-color: var(--eventflow-white);
    color: var(--eventflow-gray);
  }
  
  body.locked {
    overflow: hidden;
  }
  
  a {
    color: var(--eventflow-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  a,
  a:hover,
  a:focus,
  a:visited {
    text-decoration: none;
  }
  
  ::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  :-ms-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  ::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  ::placeholder {
    color: inherit;
    opacity: 1;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--eventflow-white);
    margin: 0;
  }
  
  p {
    margin: 0;
  }
  
  dl,
  ol,
  ul {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  ::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  :-ms-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  ::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  ::placeholder {
    color: inherit;
    opacity: 1;
  }
  
  .page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .list-unstyled {
    padding-left: 0;
  }
  
  @media (min-width: 1320px) {
    .container {
      max-width: 1320px;
    }
  }
  
  ::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  :-ms-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  ::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  ::placeholder {
    color: inherit;
    opacity: 1;
  }
  
  .section-separator {
    border-color: var(--eventflow-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    opacity: 0.4;
    z-index: -1;
  }
  
  .section-title {
    position: relative;
    display: block;
    margin-top: -5px;
    margin-bottom: 52px;
  }
  
  .section-title__tagline-box {
    position: relative;
    display: block;
    margin-bottom: 12px;
  }
  
  .section-title__tagline {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: #A7C520;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  
  .section-title__title {
    margin: 0;
    color: var(--eventflow-white);
    font-size: 48px;
    line-height: 55px;
    font-weight: 700;
    text-transform: capitalize;
  }
  
  .section-title__title--two {
    color: var(--eventflow-black);
  }
  
  .thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    font-weight: 700;
    font-size: 15px;
    color: var(--eventflow-white);
    text-transform: capitalize;
    letter-spacing: 1.6px;
    padding: 17px 30px 17px;
    background: #A7C520;
    border-radius: 30px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    overflow: hidden;
    gap: 10px;
    z-index: 1;
  }
  
  .thm-btn::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    background: #A7C520;
    transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    z-index: -1;
  }
  
  .thm-btn:hover {
    color: var(--eventflow-white);
  }
  
  .thm-btn:hover::after {
    bottom: -50%;
  }
  
  .bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
  .bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
  .bootstrap-select .show>.btn-light.dropdown-toggle {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
  }
  
  .bootstrap-select>.dropdown-toggle {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
  
  .bootstrap-select .dropdown-toggle:focus,
  .bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
  }
  
  .bootstrap-select .dropdown-menu {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
  }
  
  .bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--eventflow-base);
    color: var(--eventflow-white);
  }
  
  .bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 12px;
    color: #ffffff;
    text-transform: uppercase;
    background: var(--eventflow-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .bootstrap-select .dropdown-menu>li>a:hover {
    background: var(--eventflow-base);
    color: var(--eventflow-white);
    cursor: pointer;
  }
  
  
  /*--------------------------------------------------------------
  # Banner One
  --------------------------------------------------------------*/
  .banner-one {
    position: relative;
    display: block;
    padding: 200px 0 200px;
    background-color: #000000;
    z-index: 91;
  }
  
  .banner-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .15;
    z-index: -1;
  }
  
  .banner-one__inner {
    position: relative;
    display: block;
    text-align: center;
  }
  
  .banner-one__countdown-timer-box {
    position: relative;
    display: block;
  }
  
  .banner-one__countdown-timer-box .time-countdown-two {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 500px;
    width: 100%;
    margin: 0 auto 10px;
  }
  
  .banner-one__countdown-timer-box li {
    position: relative;
    display: block;
    float: left;
    text-align: center;
    margin-bottom: 30px;
    z-index: 2;
  }
  
  .banner-one__countdown-timer-box li+li {
    margin-left: 5px;
  }
  
  .banner-one__countdown-timer-box li .box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 120px;
    width: 120px;
    margin: 0 auto 0;
    border-radius: 50%;
    text-align: center;
    z-index: 1;
  }
  
  .banner-one__countdown-timer-box li .box:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 10px;
    border: 2px solid transparent;
    background: linear-gradient(180deg, #B20D5D, rgba(140, 30, 13, .33)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: -1;
  }
  
  .banner-one__countdown-timer-box li span.days,
  .banner-one__countdown-timer-box li span.hours,
  .banner-one__countdown-timer-box li span.minutes,
  .banner-one__countdown-timer-box li span.seconds {
    position: relative;
    display: block;
    color: var(--eventflow-white);
    font-size: 35px;
    line-height: 35px;
    text-align: center;
    font-weight: 700;
    margin: 0 auto;
  }
  
  .banner-one__countdown-timer-box li span.timeRef {
    position: relative;
    display: block;
    color: var(--eventflow-white);
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 8px;
  }
  
  .banner-one__title {
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 55px;
  }
  
  .banner-one__date {
    font-size: 35px;
    line-height: 45px;
    color: var(--eventflow-white);
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .banner-one__address {
    font-size: 24px;
    color: var(--eventflow-white);
    font-weight: 700;
    line-height: 34px;
  }
  
  .banner-one__btn-box {
    position: relative;
    display: block;
    margin-top: 41px;
  }
  
  
  /*--------------------------------------------------------------
  # Services One
  --------------------------------------------------------------*/
  .services-one {
    position: relative;
    display: block;
    padding: 96px 0 80px;
    z-index: 1;
  }
  
  .services-one__single {
    position: relative;
    display: block;
    padding: 38px 39px 37px;
    border-radius: 20px;
    margin-bottom: 30px;
    z-index: 1;
  }
  
  .services-one__single:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 20px;
    border: 1px solid transparent;
    background: linear-gradient(180deg, #F24617, rgba(140, 30, 13, .33)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: -1;
  }
  
  .services-one__single:hover:before {
    visibility: hidden;
    opacity: 0;
  }
  
  .services-one__single:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 20px;
    border: 1px solid transparent;
    background: linear-gradient(180deg, rgba(140, 30, 13, .33), #F24617) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
  }
  
  .services-one__single:hover:after {
    visibility: visible;
    opacity: 1;
  }
  
  .services-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #A7C520;
  }
  
  .services-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: var(--eventflow-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
  }
  
  .services-one__single:hover .services-one__icon span {
    transform: scale(1.05);
  }
  
  .services-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 22px;
  }
  
  .services-one__title a {
    color: var(--eventflow-white);
  }
  
  .services-one__title a:hover {
    color: var(--eventflow-base);
  }
  
  .services-one__text {
    margin-top: 14px;
    margin-bottom: 30px;
  }
  
  .services-one__read-more {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--eventflow-white);
    font-weight: 700;
  }
  
  .services-one__read-more:hover {
    color: var(--eventflow-base);
  }
  
  /*--------------------------------------------------------------
  # Sliding Text One
  --------------------------------------------------------------*/
  .sliding-text-one {
    position: relative;
    display: block;
    padding: 0px 0 109px;
    z-index: 1;
  }
  
  .sliding-text-one__wrap {
    position: relative;
    display: block;
  }
  
  .sliding-text__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    width: fit-content;
  }
  
  .sliding-text__list li {
    osition: relative;
    display: block;
    float: left;
    margin-right: 35px;
  }
  
  .sliding-text__title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 35px;
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
    font-size: 96px;
    line-height: 115px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  .sliding-text__title img {
    width: auto;
    animation: textRotate 05s linear 0s forwards infinite alternate;
  }
  
  .sliding-text__list li .sliding-text__title:hover {
    color: transparent;
    -webkit-text-stroke: 1px transparent;
  }
  
  .sliding-text__title:before {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: var(--eventflow-white);
    white-space: nowrap;
    content: attr(data-hover);
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
  }
  
  .sliding-text__list li:hover .sliding-text__title:before {
    width: 100%;
    color: var(--eventflow-white);
  }
  
  @keyframes textRotate {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  
  /*--------------------------------------------------------------
  # Event One
  --------------------------------------------------------------*/
  .event-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
  }
  
  .event-one__inner {
    position: relative;
    display: block;
    border: 2px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    border-radius: 20px;
    padding: 40px;
    z-index: 1;
  }
  
  .event-one__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .event-one__top .section-title {
    margin-bottom: 0;
  }
  
  .event-one__btn-box {
    position: relative;
    display: block;
  }
  
  .event-one__points {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 60px;
  }
  
  .event-one__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 50%;
    width: 100%;
  }
  
  .event-one__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80px;
    width: 100%;
    height: 80px;
    border-radius: 50%;
    background: #A7C520;
  }
  
  .event-one__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: var(--eventflow-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
  }
  
  .event-one__points li:hover .icon span {
    transform: scale(.9);
  }
  
  .event-one__points li .content {
    position: relative;
    display: block;
  }
  
  .event-one__points li .content h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 14px;
  }
  
  .event-one__points li .content h4 a {
    color: var(--eventflow-white);
  }
  
  .event-one__points li .content p {
    font-size: 12px;
    line-height: 20px;
  }
  
  .event-one__points li .content h4 a:hover {
    color: var(--eventflow-base);
  }
  
  .event-one__img-box {
    position: relative;
    display: block;
  }
  
  .event-one__img-box img {
    width: 100%;
    border-radius: 20px;
  }
  
  /*--------------------------------------------------------------
  # Buy Ticket
  --------------------------------------------------------------*/
  .buy-ticket {
    position: relative;
    display: block;
    background-color: #0E0A17;
    padding: 60px 0px;
    z-index: 1;
  }
  
 
  
  .buy-ticket__address {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .buy-ticket__address li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .buy-ticket__address li .icon {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .buy-ticket__address li .icon span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--eventflow-white);
  }
  
  .buy-ticket__address li .text {
    position: relative;
    display: block;
  }
  
  .buy-ticket__address li .text p {
    font-size: 12px;
    color: var(--eventflow-white);
  }
  
  .buy-ticket__title {
    font-size: 48px;
    line-height: 55px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 5px;
  }
  
  .buy-ticket__title a {
    color: var(--eventflow-white);
  }
  
  .buy-ticket__text {
    margin-bottom: 42px;
  }
  
  .buy-ticket__btn-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .buy-ticket__btn-2 {
    background: transparent;
    border: 1px solid var(--eventflow-bdr-color);
    padding: 16px 30px 16px;
  }
  
  .buy-ticket__btn-2:hover {
    border: 1px solid transparent;
  }
  
  .buy-ticket__right {
    margin-top: 45px;
  }
  
  .buy-ticket__img {
    position: relative;
    display: block;
  }
  
  .buy-ticket__img img {
    width: 100%;
    border: 7px solid #261E36;
    border-radius: 20px;
  }
  
  /*--------------------------------------------------------------
  # Team One
  --------------------------------------------------------------*/
  .team-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  .team-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .team-one__img-box {
    position: relative;
    display: block;
  }
  
  .team-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
  }
  
  .team-one__img img {
    width: 100%;
    border-radius: 20px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
  }
  
  .team-one__single:hover .team-one__img img {
    transform: scale(1.05) rotate(0deg);
  }
  
  .team-one__content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: #0E0A17;
    padding: 24px 30px 23px;
    border-radius: 20px;
    transform: translateY(0%);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: visible;
    opacity: 1;
    z-index: 2;
  }
  
  .team-one__single:hover .team-one__content {
    visibility: hidden;
    transform: translateY(150%);
    opacity: 0;
  }
  
  .team-one__name {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 20px;
  }
  
  .team-one__name a {
    color: var(--eventflow-white);
  }
  
  .team-one__sub-title {
    line-height: 16px;
    color: var(--eventflow-white);
  }
  
  .team-one__content-hover {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: #A7C520;
    border-radius: 20px;
    padding: 27px 30px 29px;
    transform: translateY(66%);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
  }
  
  .team-one__single:hover .team-one__content-hover {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
  }
  
  .team-one__name-hover {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 20px;
  }
  
  .team-one__name-hover a {
    color: var(--eventflow-white);
  }
  
  .team-one__name-hover a:hover {
    color: var(--eventflow-black);
  }
  
  .team-one__sub-title-hover {
    line-height: 16px;
    color: var(--eventflow-white);
  }
  
  .team-one__text-hover {
    margin-top: 15px;
  }
  
  /*--------------------------------------------------------------
  # Event Direction
  --------------------------------------------------------------*/
  .event-direction {
    position: relative;
    display: block;
    z-index: 1;
  }
  
  .event-direction__inner {
    position: relative;
    display: block;
    background-color: #0E0A17;
    padding: 100px 60px 70px;
    border-radius: 20px;
  }
  
  .event-direction__left {
    position: relative;
    display: block;
  }
  
  .event-direction__left .section-title {
    margin-bottom: 4px;
  }
  
  .event-direction__call {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
  }
  
  .event-direction__call-icon {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .event-direction__call-icon img {
    width: auto;
  }
  
  .event-direction__call-content {
    position: relative;
    display: block;
  }
  
  .event-direction__call-content p {
    color: var(--eventflow-white);
    margin-bottom: 9px;
  }
  
  .event-direction__call-content h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.4px;
    line-height: 16px;
  }
  
  .event-direction__call-content h4 a {
    color: var(--eventflow-white);
  }
  
  .event-direction__call-content h4 a:hover {
    color: var(--eventflow-base);
  }
  
  .event-direction__right {
    position: relative;
    display: block;
    margin-left: 8px;
  }
  
  .event-direction__counter {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
  }
  
  .event-direction__counter li {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .event-direction__counter-single {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
    padding: 21px 0 26px;
  }
  
  .event-direction__counter-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  
  .event-direction__counter-box h3 {
    font-size: 48px;
    line-height: 48px !important;
    font-weight: 700;
  }
  
  .event-direction__counter-plus {
    font-size: 48px;
    line-height: 48px !important;
    font-weight: 700;
  }
  
  .event-direction__counter-text {
    color: rgba(var(--eventflow-white-rgb), .80);
    line-height: 16px;
  }
  
  /*--------------------------------------------------------------
  # Services Two
  --------------------------------------------------------------*/
  .services-two {
    position: relative;
    display: block;
    padding: 0 0 90px;
  }
  
  .services-two__single {
    position: relative;
    display: block;
    border: 1px solid var(--eventflow-bdr-color);
    border-radius: 20px;
    padding: 39px 39px 37px;
    margin-bottom: 30px;
  }
  
  .services-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background: #A7C520;
    margin-bottom: 22px;
    z-index: 1;
  }
  
  .services-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: var(--eventflow-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
  }
  
  .services-two__single:hover .services-two__icon span {
    transform: scale(.9);
  }
  
  .services-two__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
  }
  
  .services-two__title a {
    color: var(--eventflow-black);
  }
  
  .services-two__title a:hover {
    color: var(--eventflow-base);
  }
  
  .services-two__text {
    margin-top: 18px;
    margin-bottom: 24px;
  }
  
  .services-two__btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--eventflow-black);
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: capitalize;
  }
  
  .services-two__btn span {
    font-size: 13px;
  }
  
  .services-two__btn:hover {
    color: var(--eventflow-base);
  }
  
  /*--------------------------------------------------------------
  # Service Details
  --------------------------------------------------------------*/
  .service-details {
    position: relative;
    display: block;
    padding: 60px 0px;
    z-index: 1;
  }
  
  .service-details__top {
    position: relative;
    display: block;
  }
  
  .service-details__top-left {
    position: relative;
    display: block;
  }
  
  .service-details__category-title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
  }
  
  .service-details__all-category {
    position: relative;
    display: block;
    padding: 44px 40px 30px;
    border-radius: 20px;
    background-color: #0E0A17;
  }
  
  .service-details__all-category .service-details__title {
    margin-bottom: 34px;
  }
  
  .service-details__all-category-list {
    position: relative;
    display: block;
  }
  
  .service-details__all-category-list li {
    position: relative;
    display: block;
  }
  
  .service-details__all-category-list li+li {
    margin-top: 20px;
  }
  
  .service-details__all-category-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #04000A;
    border-radius: 27px;
    color: var(--eventflow-white);
    padding: 14px 20px 14px;
    z-index: 1;
  }
  
  .service-details__all-category-list li.active a {
    color: var(--eventflow-white);
  }
  
  .service-details__all-category-list li:hover a {
    color: var(--eventflow-white);
  }
  
  .service-details__all-category-list li>a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 27px;
    background: #A7C520;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
  }
  
  .service-details__all-category-list li:hover a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
  }
  
  .service-details__all-category-list li.active a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
  }
  
  .service-details__all-category-list li a i {
    position: absolute;
    top: 50%;
    left: 20px;
    font-size: 14px;
    transform: translateY(-50%);
    background: #A7C520;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  
  .service-details__all-category-list li a:hover i {
    background: linear-gradient(90deg, #4A0AB4 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  
  .service-details__all-category-list li.active a i {
    background: linear-gradient(90deg, #4A0AB4 0%, #4A0AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  
  .service-details__get-touch {
    position: relative;
    display: block;
    padding: 20px;
    border-radius: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    z-index: 1;
  }
  
  .service-details__get-touch-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    z-index: -1;
  }
  
  .service-details__get-touch-inner {
    position: relative;
    display: block;
    text-align: center;
    background: #A7C520;
    border-radius: 20px;
    padding: 38px 30px 38px;
  }
  
  .service-details__get-touch-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
  }
  
  .service-details__get-touch-sub-title {
    color: var(--eventflow-white);
    margin-top: 7px;
    margin-bottom: 20px;
  }
  
  .service-details__get-touch-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background-color: rgba(var(--eventflow-white-rgb), .20);
    border-radius: 50%;
    margin: 0 auto;
    webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .service-details__get-touch-icon:hover {
    background-color: var(--eventflow-black);
  }
  
  .service-details__get-touch-icon span {
    position: relative;
    display: inline-block;
    font-size: 30px;
    color: var(--eventflow-white);
  }
  
  .service-details__get-touch-number {
    font-size: 20px;
    font-weight: 700;
  }
  
  .service-details__get-touch-number a {
    color: #000;
  }
  
  .service-details__get-touch-number a:hover {
    color: var(--eventflow-black);
  }
  
  .service-details__download-box {
    position: relative;
    display: block;
    padding: 30px 40px 30px;
    background-color: #0E0A17;
    border-radius: 20px;
  }
  
  .service-details__download-list {
    position: relative;
    display: block;
  }
  
  .service-details__download-list li {
    position: relative;
    display: block;
  }
  
  .service-details__download-list li+li {
    margin-top: 20px;
  }
  
  .service-details__download-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(var(--eventflow-white-rgb), 0.05);
    border-radius: 34px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--eventflow-white);
    padding: 20px 30px 20px;
    z-index: 1;
  }
  
  .service-details__download-list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 27px;
    background: #A7C520;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
  }
  
  .service-details__download-list li:hover a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
  }
  
  .service-details__top-right {
    position: relative;
    display: block;
  }
  
  .service-details__img-1 {
    position: relative;
    display: block;
  }
  
  .service-details__img-1 img {
    width: 100%;
    border-radius: 20px;
  }
  
  .service-details__title-1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-transform: capitalize;
    margin-top: 28px;
    margin-bottom: 17px;
  }
  
  .service-details__text-1 {
    color: rgba(var(--eventflow-white-rgb), .80);
    line-height: 24px;
  }
  
  .service-details__img-box {
    position: relative;
    display: block;
    margin-top: 29px;
  }
  
  .service-details__img-box-img {
    position: relative;
    display: block;
    margin-bottom: 38px;
  }
  
  .service-details__img-box-img img {
    width: 100%;
    border-radius: 20px;
  }
  
  .service-details__title-2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-transform: capitalize;
  }
  
  .service-details__text-2 {
    color: rgba(var(--eventflow-white-rgb), .80);
    margin-top: 17px;
    margin-bottom: 18px;
    line-height: 24px;
  }
  
  .service-details__text-3 {
    color: rgba(var(--eventflow-white-rgb), .80);
    line-height: 24px;
  }
  
  .service-details__bottom {
    position: relative;
    display: block;
    margin-top: 36px;
  }
  
  .service-details__single {
    position: relative;
    display: block;
    background-color: #0E0A17;
    border-radius: 20px;
    padding: 39px 39px 37px;
    margin-bottom: 30px;
  }
  
  .service-details__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background: #A7C520;
    margin-bottom: 22px;
    z-index: 1;
  }
  
  .service-details__icon span {
    padding: 20px;
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: var(--eventflow-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
  }
  
  .service-details__single:hover .service-details__icon span {
    transform: scale(.9);
  }
  
  .service-details__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
  }
  
  .service-details__title a {
    color: var(--eventflow-white);
  }
  
  .service-details__title a:hover {
    color: var(--eventflow-base);
  }
  
  .service-details__text {
    margin-top: 18px;
    margin-bottom: 24px;
    color: rgba(var(--eventflow-white-rgb), .80);
    text-align: justify;
  }
  
  .service-details__btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--eventflow-white);
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: capitalize;
  }
  
  .service-details__btn span {
    font-size: 13px;
  }
  
  .service-details__btn:hover {
    color: var(--eventflow-base);
  }
  
  .service-details__text-4 {
    color: rgba(var(--eventflow-white-rgb), .80);
    line-height: 24px;
    padding-top: 54px;
  }
  
  .service-details__faq-box {
    position: relative;
    display: block;
    margin-top: 61px;
    counter-reset: count;
  }
  
  .service-details__faq-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 40px;
  }
  
  .service-details__faq-box .faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    background-color: transparent;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    background-color: #0E0A17;
    border-radius: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .service-details__faq-box .faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 16px 30px 17px;
    padding-left: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    padding-right: 25px;
  }
  
  .service-details__faq-box .faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 1.4px;
    color: var(--eventflow-white);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .service-details__faq-box .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 37px;
  }
  
  .service-details__faq-box .faq-one-accrodion .accrodion-content {
    position: relative;
    padding-bottom: 28px;
    padding-left: 30px;
    padding-right: 35px;
  }
  
  .service-details__faq-box .faq-one-accrodion .accrodion-content p {
    margin: 0;
    color: rgba(var(--eventflow-white-rgb), .80);
  }
  
  .service-details__faq-box .faq-one-accrodion__count {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .service-details__faq-box .faq-one-accrodion__count::before {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 1.4px;
    color: var(--eventflow-white);
    counter-increment: count;
    content: ""counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .service-details__faq-box .faq-one-accrodion__count:after {
    content: "";
    position: absolute;
    bottom: 8px;
    right: -7px;
    width: 4px;
    height: 4px;
    background-color: var(--eventflow-white);
    border-radius: 50%;
  }
 
  /*--------------------------------------------------------------
  # Blog Page
  --------------------------------------------------------------*/
  .blog-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  /*--------------------------------------------------------------
  # Team Page
  --------------------------------------------------------------*/
  .team-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  /*--------------------------------------------------------------
  # Team Page
  --------------------------------------------------------------*/
  .testimonial-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  .testimonial-page .testimonial-one__single {
    margin-bottom: 30px;
  }
  
  /*--------------------------------------------------------------
  # Services Page
  --------------------------------------------------------------*/
  .services-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  /*--------------------------------------------------------------
  # Event Page
  --------------------------------------------------------------*/
  .event-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  
  /*--------------------------------------------------------------
  # Services Three
  --------------------------------------------------------------*/
  .services-three {
    padding: 0px 0 90px;
  }
  
  /*--------------------------------------------------------------
  # Ticket Two
  --------------------------------------------------------------*/
  .ticket-two {
    padding: 120px 0 90px;
  }
  
  /*--------------------------------------------------------------
  # Pricing Two
  --------------------------------------------------------------*/
  .pricing-two {
    background-color: var(--eventflow-white);
    padding: 190px 0 90px;
  }
  
  .pricing-two .pricing-one__points li .text p {
    color: var(--eventflow-gray);
  }
  
  /*--------------------------------------------------------------
  # Event Three
  --------------------------------------------------------------*/
  .event-three {
    padding: 60px 0px;
  }
  
  /*--------------------------------------------------------------
  # Event Direction Two
  --------------------------------------------------------------*/
  .event-direction-two {
    padding: 60px 0 60px;
  }
  
  

  
  /*--------------------------------------------------------------
  # Page Header
  --------------------------------------------------------------*/
  .page-header {
    position: relative;
    display: block;
    padding: 188px 0 188px;
    overflow: hidden;
    z-index: 1;
  }
  
  .page-header__shape-1 {
    position: absolute;
    top: 30px;
    left: -30px;
    z-index: -1;
  }
  
  .page-header__shape-1 img {
    width: auto;
    filter: grayscale(1);
    opacity: 0.20;
  }
  
  .page-header__shape-2 {
    position: absolute;
    bottom: 0;
    right: -30px;
    z-index: -1;
  }
  
  .page-header__shape-2 img {
    width: auto;
    filter: grayscale(1);
    opacity: 0.20;
  }
  
  .page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .page-header__bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.87) 24.4%, rgba(102, 102, 102, 0) 100%);
  }
  
  .page-header__inner {
    position: relative;
    display: block;
    text-align: center;
  }
  
  .page-header__inner h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 70px;
    color: var(--eventflow-white);
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  
  .thm-breadcrumb__box {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  
  .thm-breadcrumb {
    position: relative;
    display: inline-block;
  }
  
  .thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: var(--eventflow-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .thm-breadcrumb li+li {
    margin-left: 13px;
  }
  
  .thm-breadcrumb li span {
    font-size: 13px;
  }
  
  .thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    color: var(--eventflow-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .thm-breadcrumb li:hover a {
    color: var(--eventflow-base);
  }
  
  
  /*--------------------------------------------------------------
  #  Contact One
  --------------------------------------------------------------*/
  .contact-one {
    position: relative;
    display: block;
    padding: 60px 0px;
    z-index: 1;
  }
  
  .contact-one .container {
    max-width: 1030px;
  }
  
  .contact-one__inner {
    position: relative;
    display: block;
    background-color: #0E0A17;
    text-align: center;
    padding: 58px 60px 70px;
  }
  
  .contact-one__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    text-transform: capitalize;
  }
  
  .contact-one__text {
    line-height: 24px;
    color: var(--eventflow-white);
    margin-top: 11px;
    margin-bottom: 40px;
  }
  
  .contact-one__form {
    position: relative;
    display: block;
  }
  
  .contact-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .contact-one__input-box input[type="text"],
  .contact-one__input-box input[type="email"] {
    height: 54px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--eventflow-white);
    display: block;
    font-weight: 400;
    border-radius: 27px;
  }
  
  .contact-one__input-box .select-box {
    width: 100%;
  }
  
  .contact-one__input-box .nice-select {
    height: 54px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--eventflow-white);
    display: block;
    font-weight: 400;
    border-radius: 27px;
    line-height: 54px;
    float: none;
  }
  
  .contact-one__input-box .nice-select:after {
    position: absolute;
    top: 21px;
    right: 20px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--eventflow-base);
    border-right: 2px solid var(--eventflow-base);
    margin-top: 0px;
    z-index: 10;
  }
  
  .contact-one__input-box .nice-select .option {
    color: var(--eventflow-white);
  }
  
  .contact-one__input-box textarea {
    position: relative;
    height: 120px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    color: var(--eventflow-white);
    display: block;
    font-weight: 400;
    border-radius: 5px;
    margin-bottom: 0;
  }
  
  .contact-one__input-box.text-message-box {
    height: 120px;
  }
  
  .contact-one__btn-box {
    position: relative;
    display: block;
    text-align: center;
  }
  
  .contact-one__btn {
    border: none;
    padding: 17px 176px 17px;
  }
  
  /*--------------------------------------------------------------
  # Contact Two
  --------------------------------------------------------------*/
  .contact-two {
    position: relative;
    display: block;
    padding: 0 0 90px;
    z-index: 1;
  }
  
  .contact-two__single {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--eventflow-bdr-color-rgb), .20);
    border-radius: 20px;
    text-align: center;
    padding: 39px 30px 48px;
    margin-bottom: 30px;
  }
  
  .contact-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #0E0A17;
    border-radius: 50%;
    margin: 0 auto;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .contact-two__single:hover .contact-two__icon {
    background-color: var(--eventflow-white);
  }
  
  .contact-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 30px;
    background: #A7C520;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  
  .contact-two__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 4px;
    margin-top: 21px;
  }
  
  .contact-two__text {
    line-height: 24px;
    color: var(--eventflow-white);
  }
  
  .contact-two__text a {
    color: var(--eventflow-white);
  }
  
  .contact-two__text a:hover {
    color: var(--eventflow-base);
  }
  
  /*--------------------------------------------------------------
  # End
  --------------------------------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
    .services-one__single {
        padding: 38px 20px 37px;
    }

    .buy-ticket__text br {
        display: none;
    }

    .blog-one__content {
        padding: 45px 15px 30px;
        margin-right: 20px;
    }

    .footer-widget__contact {
        margin-left: -25px;
    }

    .event-two__right {
        margin-top: 0;
        margin-left: 0;
    }

    .event-two__points {
        gap: 15px;
    }

    .conference-one__main-tab-box .tab-buttons {
        top: 390px;
    }

    .team-two__img {
        margin-left: 47px;
    }

    .team-two__content-box {
        margin-right: 20px;
    }

    .team-two__sub-title-box {
        position: relative;
        top: 0;
        left: 0;
        transform: rotate(0deg);
        margin-bottom: 20px;
    }

    .blog-two__content {
        padding: 35px 25px 40px;
    }

    .site-footer-two .footer-widget__contact {
        margin-left: -25px;
    }

    .feature-one__title {
        font-size: 22px;
    }

    .sidebar__search {
        padding: 44px 20px 40px;
    }

    .sidebar__all-category {
        padding: 44px 20px 40px;
    }

    .sidebar__post {
        padding: 44px 20px 40px;
    }

    .sidebar__tags {
        padding: 44px 20px 40px;
    }

    .event-details__main-tab-box .tab-buttons .tab-btn+.tab-btn {
        margin-left: 50px;
    }

    .schedule-one__single {
        padding: 30px 15px 30px;
    }

    .service-details__all-category {
        padding: 44px 20px 30px;
    }

    .service-details__get-touch-number {
        font-size: 25px;
        line-height: 35px;
    }

    .service-details__download-box {
        padding: 30px 20px 30px;
    }



}


/* Medium screen  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .services-one__single {
        padding: 38px 20px 37px;
    }

    .services-one__title {
        font-size: 20px;
        line-height: 30px;
    }
    .service-details__get-touch-number {
        font-size: 25px;
        line-height: 35px;
    }

    .service-details__single {
        padding: 39px 14px 37px;
    }

    .team-details__right {
        padding-left: 0;
        margin-right: 0;
    }

}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {

  .event-one__img-box img {
    height: 220px;
  }

  .event-one__inner {
    padding: 25px 10px;
  }
    .section-title__title {
        font-size: 30px;
        line-height: 40px;
    }

    .section-title__title br {
        display: none;
    }

    .services-one__single {
        padding: 38px 20px 37px;
    }

    .services-one__title {
        font-size: 20px;
        line-height: 30px;
    }

    .event-one__top {
        flex-direction: column;
        align-items: baseline;
    }

    .event-one__btn-box {
        margin-top: 30px;
    }

    .event-one__points {
        flex-direction: column;
        align-items: baseline;
    }

    .event-one__points li {
        flex-direction: column;
        align-items: baseline;
        max-width: 100%;
    }

    .event-one__points li+li {
        margin-top: 30px;
    }

    .event-one__points li .content h4 {
        font-size: 20px;
        line-height: 20px;
    }

    .event-one__points li .content p br {
        display: none;
    }

  

    .service-details__top-left {
        margin-bottom: 50px;
    }

    .service-details__all-category {
        padding: 44px 20px 30px;
    }

    .service-details__get-touch {
        padding: 10px;
    }

    .service-details__get-touch-inner {
        padding: 38px 10px 38px;
    }

    .service-details__get-touch-number {
        font-size: 25px;
        line-height: 35px;
    }

    .service-details__download-box {
        padding: 30px 20px 30px;
    }

    .service-details__single {
        padding: 39px 14px 37px;
    }

    .page-header__inner h2 {
        font-size: 25px;
        line-height: 35px;
    }

    .thm-breadcrumb li {
        font-size: 18px;
    }

    .page-header__shape-1,
    .page-header__shape-2 {
        display: none;
    }

    .page-header {
        padding: 113px 0 113px;
    }

    .team-details__left {
        padding: 40px 0px 100px;
    }

    .team-details__right {
        padding-left: 0;
        margin-right: 0;
        margin-top: 40px;
    }

    .team-details__speaker-info-list {
        margin-top: 30px;
    }


    .contact-one__inner {
      padding: 58px 15px 70px;
  }

  .contact-one__title {
      font-size: 28px;
      line-height: 38px;
  }

  .contact-one__btn {
      padding: 17px 30px 17px;
  }

  .contact-two__single {
      padding: 39px 20px 48px;
  }


}
